The object of this lab is to gain some familiarity with the types of modelling tools that are available for most popular RDBMS. Use the MySQL Workbench Tool to create a schema and import data into it for one of: a) One of the datasets that you have chosen or are considering for the Capstone project. OR b) One of the datasets from kaggle that you explored last week. In either of the above cases, if you have the csv data for your dataset available you can use the import data wizard to import the data into a new table. If the csv file is structured correctly then MySQL workbench will identify the columns in the table and create a new table. The outline steps to do this are: 1. Create a new empty schema to put your new table in. Click the 4th icon from the left in the icons toolbar. 2. You should see your new schema in the schema list on the left side. 3. Right-click on the schema name and select "Table Data Import Wizard" 4. Find your csv file and click through the wizard to import it. 5. If successful, you should have a new table with the data from the csv inserted in the table.